repo.or.cz
/
and.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding some more judges, here and there.
[and.git]
/
UVa
/
10469 - To carry or not to carry
/
10469.cpp
blob
59a3f4f24c93fb4cf981e4d2e33bf16c95e011eb
1
#include <iostream>
2
3
using namespace
std
;
4
5
int
main
(){
6
unsigned long
x
,
y
;
7
while
(
cin
>>
x
>>
y
){
8
cout
<< (
x
^
y
) <<
endl
;
9
}
10
return
0
;
11
}